added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / VBFTPUpload / ErrorEventArgs.vb
blobf4634b3e4877e630fda91a2731f24d622718bc5a
1 '*************************** Module Header ******************************'
2 ' Module Name: ErrorEventArgs.vb
3 ' Project: VBFTPUpload
4 ' Copyright (c) Microsoft Corporation.
5 '
6 ' The class ErrorEventArgs defines the arguments used by the ErrorOccurred
7 ' event of FTPClient.
8 '
9 ' This source is subject to the Microsoft Public License.
10 ' See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
11 ' All other rights reserved.
13 ' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
14 ' EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
15 ' WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
16 '*************************************************************************'
18 Public Class ErrorEventArgs
19 Inherits EventArgs
20 Public Property ErrorException() As Exception
21 End Class